type compress/flate.literalNode

14 uses

	compress/flate (current package)
		huffman_code.go#L20: 	freqcache []literalNode
		huffman_code.go#L26: type literalNode struct {
		huffman_code.go#L57: func maxNode() literalNode { return literalNode{math.MaxUint16, math.MaxInt32} }
		huffman_code.go#L134: func (h *huffmanEncoder) bitCounts(list []literalNode, maxBits int32) []int32 {
		huffman_code.go#L248: func (h *huffmanEncoder) assignEncodingAndSize(bitCount []int32, list []literalNode) {
		huffman_code.go#L279: 		h.freqcache = make([]literalNode, maxNumLit+1)
		huffman_code.go#L287: 			list[count] = literalNode{uint16(i), f}
		huffman_code.go#L290: 			list[count] = literalNode{}
		huffman_code.go#L294: 	list[len(freq)] = literalNode{}
		huffman_code.go#L314: type byLiteral []literalNode
		huffman_code.go#L316: func (s *byLiteral) sort(a []literalNode) {
		huffman_code.go#L329: type byFreq []literalNode
		huffman_code.go#L331: func (s *byFreq) sort(a []literalNode) {